home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Delphi Magazine Collection 2001
/
Delphi Magazine Collection 20001 (2001).iso
/
DISKS
/
ISSUE01
/
TIPTRIX
/
LISTNG10.PAS
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Pascal/Delphi Source File
|
1995-06-01
|
210 b
|
12 lines
type
cResBitmap = class(TBitmap)
public
constructor Create(aId:PChar);
end;
constructor cResBitmap.Create(aId: PChar);
begin
inherited Create;
Handle:= LoadBitmap(hInstance,aId);
end;